const compress/flate.maxStoreBlockSize
12 uses
compress/flate (current package)
deflate.go#L52: maxStoreBlockSize = 65535
deflate.go#L333: if d.windowEnd < maxStoreBlockSize {
deflate.go#L520: if d.windowEnd > 0 && (d.windowEnd == maxStoreBlockSize || d.sync) {
deflate.go#L573: d.window = make([]byte, maxStoreBlockSize)
deflate.go#L577: d.window = make([]byte, maxStoreBlockSize)
deflate.go#L582: d.window = make([]byte, maxStoreBlockSize)
deflate.go#L586: d.tokens = make([]token, maxStoreBlockSize)
deflatefast.go#L23: bufferReset = math.MaxInt32 - maxStoreBlockSize*2
deflatefast.go#L64: return &deflateFast{cur: maxStoreBlockSize, prev: make([]byte, 0, maxStoreBlockSize)}
deflatefast.go#L78: e.cur += maxStoreBlockSize
huffman_bit_writer.go#L321: if len(in) <= maxStoreBlockSize {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |